home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / fileno.c < prev    next >
C/C++ Source or Header  |  1988-06-10  |  1KB  |  51 lines

  1. /* 
  2.  * fileno.c --
  3.  *
  4.  *    Source code for the "fileno" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: fileno.c,v 1.1 88/06/10 16:23:45 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "stdio.h"
  21. #include "fileInt.h"
  22.  
  23. /*
  24.  *----------------------------------------------------------------------
  25.  *
  26.  * fileno --
  27.  *
  28.  *    Returns the stream identifier associated with a stream.
  29.  *
  30.  * Results:
  31.  *    If stream isn't a file-related stream then -1 is returned.
  32.  *    Otherwise the return value is the stream identifier associated
  33.  *    with stream.
  34.  *
  35.  * Side effects:
  36.  *    None.
  37.  *
  38.  *----------------------------------------------------------------------
  39.  */
  40.  
  41. int
  42. fileno(stream)
  43.     FILE * stream;        /* Stream for which id is desired. */
  44. {
  45.     if ((stream->readProc != (void (*)()) StdioFileReadProc) ||
  46.     ((stream->flags & (STDIO_READ|STDIO_WRITE)) == 0)) {
  47.     return(-1);
  48.     }
  49.     return((int) stream->clientData);
  50. }
  51.